Adding some more judges, here and there.
[and.git] / UVa / 724 - Reverse / 724.3.cpp
blobd3a63412ed5b4c90dfc26a2fa2c8bc1b46e78fce
1 #include <iostream>
2 #include <algorithm>
3 using namespace std;
5 int main(){
6 string s = "int main(){ return 0; }";
7 cout << s << endl;
8 reverse(s.begin(), s.end());
9 cout << s << endl;
10 return 0;